home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 173 / 173.xpi / chrome / gm-notifier.jar / content / gm-notifier / gm-login.xul < prev    next >
Extensible Markup Language  |  2009-09-28  |  2KB  |  61 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://gm-notifier/content/gm-notifier.css" type="text/css"?>
  5.  
  6. <!DOCTYPE dialog SYSTEM "chrome://gm-notifier/locale/gm-notifier.dtd">
  7.  
  8. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  9.         xmlns:html="http://www.w3.org/1999/xhtml"
  10.         id="gm--notifier-login"
  11.         onload="return onLoad();"
  12.         ondialogaccept="return onAccept();"
  13.         buttons="accept,cancel"
  14.         title="¬ifier-login.title;" style="padding:0px;"
  15.         persist="screenX screenY">
  16.  
  17.   <script type="application/x-javascript" src="chrome://gm-notifier/content/gm-login.js"/>
  18.  
  19.   <stringbundle id="strings" src="chrome://gm-notifier/locale/gm-notifier.properties"/>
  20.  
  21.   <description value="¬ifier-login.title;" class="notifier-dialog-title"/>
  22.  
  23.   <description id="status" style="text-align:center; padding-top:10px;" value=""/>
  24.  
  25.   <grid style="padding:10px;">
  26.     <columns>
  27.       <column />
  28.       <column flex="1"/>
  29.     </columns>
  30.  
  31.     <rows>
  32.       <row>
  33.         <hbox align="center">
  34.           <label control="username" value="¬ifier-login-username.label;"
  35.                  accesskey="¬ifier-login-username.accesskey;" />
  36.         </hbox>
  37.         <!--<textbox flex="1" id="username"/>-->
  38.         <menulist type="autocomplete" oncommand="selectionChanged(this)" editable="true" id="username"/>
  39.       </row>
  40.       <row>
  41.         <hbox align="center">
  42.           <label control="password" value="¬ifier-login-password.label;"
  43.                  accesskey="¬ifier-login-password.accesskey;"/>
  44.         </hbox>
  45.         <textbox flex="1" type="password" id="password"/>
  46.       </row>
  47.       <row>
  48.         <spacer />
  49.         <checkbox id="store-password" label="¬ifier-login-remember-password.label;"/>
  50.       </row>
  51.     </rows>
  52.   </grid>
  53.  
  54.   <hbox>
  55.     <spacer flex="1"/>
  56.     <button label="¬ifier-login-button-login.label;" id="login" dlgtype="accept"/>
  57.     <button dlgtype="cancel" />
  58.   </hbox>
  59. </dialog>
  60.  
  61.